home *** CD-ROM | disk | FTP | other *** search
/ Webster's Millennium Amer…Sign Language Dictionary / ASL.ISO / mac / SKILLS.dir / 00067_Script_end game script < prev    next >
Text File  |  2001-09-05  |  1KB  |  42 lines

  1. on mouseUp
  2.   global whichSkills
  3.   
  4.   global oldi,gClockOn
  5.   
  6.   ---CG Added this to fix the artifacts left by video on windows
  7.   if the machinetype = 256 then
  8.     puppetsprite 39,1
  9.     set the loc of sprite 39 to point (900,900)
  10.     set the stagecolor to the stagecolor
  11.     ---consider mTropolis?
  12.     updatestage
  13.     puppetsprite 39,0
  14.   end if
  15.   
  16.   
  17.   set gClockOn = false
  18.   set oldi = 0
  19.   repeat with i = 3 to 26
  20.     if the puppet of Sprite i = true then puppetSprite i, false
  21.     if the visible of sprite i = false then set the visible of sprite i = true
  22.   end repeat
  23.   repeat with i = 29 to 32
  24.     puppetSprite i, false
  25.   end repeat
  26.   puppetSprite 34,false
  27.   puppetSprite 38,false
  28.   puppetSprite 39,false
  29.   
  30.   TellEveryPuppetToFuckOff
  31.   
  32.   saveResults
  33.   if whichSkills = "practice/test" then go frame "pract/test setup"
  34.   else 
  35.     puppetsprite 2,false
  36.     go frame "Conc setup"
  37.   end if
  38.   
  39.   --mouseUp (script ("SK HOME dk script"))
  40.   saveResults
  41.   --alert "end practice"
  42. end